/* C.Strlower: map an entire string to lower case */

#include <ctype.h>
#include "utils.h"

char *strlower (char *str)
{
        register char *temp;

        temp = str;

        while ( *temp )
        {
                *temp = tolower(*temp);
                ++temp;
        }

        return str;
}
